home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 February / EnterCD 02_2004.iso / Gry / Arcade! Classic Arcade Pack 2.0 / Arcade.EXE / $PROGRAMFILES / Arcade! Classic Arcade Pack / pacman.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2003-12-05  |  273 b   |  14 lines

  1. stop();
  2. Stage.showMenu = false;
  3. this.onEnterFrame = function()
  4. {
  5.    sofar = this.getBytesLoaded();
  6.    total = this.getBytesTotal();
  7.    Bar._width = int(sofar / total * 100);
  8.    if(sofar == total)
  9.    {
  10.       delete this.onEnterFrame;
  11.       nextFrame();
  12.    }
  13. };
  14.